Dear Matalisters,
When writing Mata code in a do-file, are there important differences between the following two ways of delimiting the Mata content?
Method 1: mata: ... end
Method 2: mata { ... }
Method 2 can be included in loops and Stata programs, are there any downsides?
Thanks,
BL
When writing Mata code in a do-file, are there important differences between the following two ways of delimiting the Mata content?
Method 1: mata: ... end
Code:
mata : a b end
Code:
mata { a b }
Thanks,
BL
Comment